Working with Single Agents
To support complex extensions of the base model, we implemented a way to retrieve single agents from containers of multiple instances having a SoA (Struct-Of-Arrays) layout under the hood.
In practice, this allows to operate on agents as if they were single structs. Let's see how this unfolds with a concrete example. As usual, we create a model instance with
import BeforeIT as Bit
parameters = Bit.AUSTRIA2010Q1.parameters
initial_conditions = Bit.AUSTRIA2010Q1.initial_conditions
model = Bit.Model(parameters, initial_conditions);Three containers in this model have multiple instances of agents: model.firms, model.w_act, model.w_inact. Each of them to be compatible with this approach contains IDs which correspond to single instances. IDs are UInt and are set internally.
One invariant of IDs one could rely on is that at initialization IDs are mapped one-to-one to indices of the arrays. Though, if any deletion happens this won't be true anymore.
id = 1
agent = model.w_act[id]Agent{Workers}(ID = 1, Y_h = 0.7661282859097249, D_h = 3.781806633594487, K_h = 6.973481059156249, w_h = 0.2697101055708983, O_h = 1, C_d_h = 0.0, I_d_h = 0.0, C_h = 0.0, I_h = 0.0)Then we can access or modify attributes of the agent simply with
agent.Y_h0.7661282859097249and
agent.Y_h = 1.01.0Now, we will show how to add or remove agent instances from the model. Since agents are added by passing a NamedTuple of the fields we will use the fields of the agent we retrieved for ease of exposition
agentfields = Bit.getfields(agent)(Y_h = 1.0, D_h = 3.781806633594487, K_h = 6.973481059156249, w_h = 0.2697101055708983, O_h = 1, C_d_h = 0.0, I_d_h = 0.0, C_h = 0.0, I_h = 0.0)Importantly, fields can be accessed as long as the agent is still inside the model, and not after that. So, if you need those fields for something else after removing an agent, retrieve the fields before removing it.
delete!(model.w_act, id)
push!(model.w_act, agentfields);We can also retrieve the id of the last agent added to the container with
id = Bit.lastid(model.w_act)4119Let's finally verify that the last agent has Y_h equal to 1.0 as it should be
agent = model.w_act[id]
agent.Y_h1.0A More Complex Example
Let's now use this capability to extend the base model.
When extending the BeforeIT models it is required to first create a new model type to use instead of the default model, we can do so by using
Bit.@object struct NewModel(Bit.Model) <: Bit.AbstractModel endLet's say that we want to add the posssibilty for workers to sign financial contracts to borrow money. At issuance, the worker’s deposit would increase by principal, and in time step period the money_to_be_paid should be paid by the debtor. In each time step a worker signs a new ConsumerLoanContract with a probability of 30% for a principal which is 20% of its Y_h, which should be repaid by a 10% margin 5 time steps later. A worker can have multiple ConsumerLoanContracts. A worker can only sign a new ConsumerLoanContract if the sum of money_to_be_paid is less than its Y_h.
To perform this last operation efficiently, we first store the sum of money_to_be_paid as a new field for the workers with
Bit.@object mutable struct NewWorkers(Bit.Workers) <: Bit.AbstractWorkers
sum_money_to_be_paid::Vector{Float64}
endLet’s introduce a new ConsumerLoanContract struct into the model. A worker could sign a ConsumerLoanContract and get a credit which would be repaid.
To do so, we first define it with
struct ConsumerLoanContract
principal::Float64
money_to_be_paid::Float64
period::Int32
debtor::Bit.Agent{NewWorkers}
endand store a vector of contracts into the properties of the model
Bit.@object mutable struct NewProperties(Bit.Properties) <: Bit.AbstractProperties
contracts::Vector{ConsumerLoanContract}
endWe want that to happen before the search & matching process, to do so we could either specialize the step! function or the function we want to call immediately after this new process. For the matter of brevity, we will follow this second approach:
function Bit.search_and_matching_credit!(model::NewModel)
sign_and_repay_contracts!(model.w_act, model)
return @invoke Bit.search_and_matching_credit!(model::Bit.AbstractModel)
end
function sign_and_repay_contracts!(workers, model)
for id in Bit.allids(workers)
agent = workers[id]
if rand() < 0.3 && agent.sum_money_to_be_paid <= agent.Y_h
principal = 0.2 * agent.Y_h
agent.Y_h += principal
money_to_be_paid = 1.1 * principal
period = model.agg.t + 5
new_contract = ConsumerLoanContract(principal, money_to_be_paid, period, agent)
push!(model.prop.contracts, new_contract)
agent.sum_money_to_be_paid += money_to_be_paid
end
end
repaid_contracts_indices = Int[]
for (i, contract) in enumerate(model.prop.contracts)
if contract.period == model.agg.t
debtor = contract.debtor
if debtor.Y_h <= contract.money_to_be_paid
debtor.Y_h -= contract.money_to_be_paid
debtor.sum_money_to_be_paid -= contract.money_to_be_paid
push!(repaid_contracts_indices, i)
end
end
end
for i in repaid_contracts_indices
contracts = model.prop.contracts
contracts[i], contracts[end] = contracts[end], contracts[i]
pop!(contracts)
end
return
endsign_and_repay_contracts! (generic function with 1 method)Now, we just create the new model
p, ic = Bit.AUSTRIA2010Q1.parameters, Bit.AUSTRIA2010Q1.initial_conditions
firms = Bit.Firms(p, ic)
w_act, w_inact = Bit.Workers(p, ic)
cb = Bit.CentralBank(p, ic)
bank = Bit.Bank(p, ic)
gov = Bit.Government(p, ic)
rotw = Bit.RestOfTheWorld(p, ic)
agg = Bit.Aggregates(p, ic)
prop = Bit.Properties(p, ic)
data = Bit.Data()
w_act_new = NewWorkers(Bit.fields(w_act)..., zeros(length(w_act.Y_h)))
prop_new = NewProperties(Bit.fields(prop)..., ConsumerLoanContract[])
model = NewModel(w_act_new, w_inact, firms, bank, cb, gov, rotw, agg, prop_new, data)Main.NewModel{Main.NewWorkers, BeforeIT.Workers, BeforeIT.Firms, BeforeIT.Bank, BeforeIT.CentralBank, BeforeIT.Government, BeforeIT.RestOfTheWorld, BeforeIT.Aggregates, Main.NewProperties, BeforeIT.Data}(Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Workers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4130), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130], [2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714 … 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714], [621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451 … 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451], [1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6 … 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 … -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Firms(Base.RefValue{Bool}(false), Base.RefValue{Int64}(624), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 615, 616, 617, 618, 619, 620, 621, 622, 623, 624], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951], [1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485 … 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877], [0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754 … 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983 … 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687], [0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721 … 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782], [0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832 … 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318], [-0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635 … 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 12, 1, 1, 2, 1, 1, 1, 2, 5, 6], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 143.8572406595874, 11.988103388298951, 11.988103388298951, 23.976206776597902, 11.988103388298951, 11.988103388298951, 11.988103388298951, 23.976206776597902, 59.94051694149476, 71.9286203297937], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 143.8572406595874, 11.988103388298951, 11.988103388298951, 23.976206776597902, 11.988103388298951, 11.988103388298951, 11.988103388298951, 23.976206776597902, 59.94051694149476, 71.9286203297937], [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 … 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534 … 950.5, 79.20833333333334, 79.20833333333334, 158.41666666666669, 79.20833333333334, 79.20833333333334, 79.20833333333334, 158.41666666666669, 396.0416666666667, 475.25], [7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355 … 48.68984006816477, 4.057486672347064, 4.057486672347064, 8.114973344694128, 4.057486672347064, 4.057486672347064, 4.057486672347064, 8.114973344694128, 20.287433361735324, 24.344920034082385], [94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001 … 299.9250285685365, 24.99375238071138, 24.99375238071138, 49.98750476142276, 24.99375238071138, 24.99375238071138, 24.99375238071138, 49.98750476142276, 124.96876190355688, 149.96251428426825], [0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726 … 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956], [12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009, 12.384292053067009 … 162.3613379591424, 13.5301114965952, 13.5301114965952, 27.0602229931904, 13.5301114965952, 13.5301114965952, 13.5301114965952, 27.0602229931904, 67.65055748297601, 81.1806689795712], [1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436, 1.254845467476436 … 42.925277805579455, 3.5771064837982873, 3.5771064837982873, 7.154212967596575, 3.5771064837982873, 3.5771064837982873, 3.5771064837982873, 7.154212967596575, 17.88553241899144, 21.462638902789728], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 12, 1, 1, 2, 1, 1, 1, 2, 5, 6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842, 1.3061857958470842 … 25.07951786131656, 2.631055234104207, 2.631055234104207, 4.671824563850785, 2.631055234104207, 2.631055234104207, 2.631055234104207, 4.671824563850785, 10.794132553090517, 12.834901882837096], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239, 529497.5487445239 … 1.0166657204115137e7, 1.0665690145299379e6, 1.0665690145299379e6, 1.8938497590376833e6, 1.0665690145299379e6, 1.0665690145299379e6, 1.0665690145299379e6, 1.8938497590376833e6, 4.375691992560919e6, 5.202972737068665e6], [287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188, 287153.1915448188 … 5.513506286149694e6, 578413.813720703, 578413.813720703, 1.0270585839415203e6, 578413.813720703, 578413.813720703, 578413.813720703, 1.0270585839415203e6, 2.3729928946039723e6, 2.82163766482479e6]), BeforeIT.Bank(89460.0, 0.0, 0.0, 0.0, 0.028359903595743693, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), BeforeIT.CentralBank(0.0016459319014481277, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 106179.90000000002), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 0.0, 14732.121510837034, 232610.9, 2.238468336136841, 0.5902859043576301, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0, 0.0), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3548476e6, 0.0, 0.0019383188997990075, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, 0.0, 33097.63671130043, 34095.03119997918, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), BeforeIT.Aggregates([104531.39273728609, 105062.38754395355, 105399.12953350678, 106689.88106040593, 107938.33111423723, 108890.48532381697, 110110.17779727321, 110374.00540561741, 110808.89423399912, 111932.48072916963 … 139382.61162744602, 141288.21877604182, 140554.06557898276, 139768.5198028018, 137144.71527593565, 135054.13194905635, 133851.32295827195, 134293.63309771818, 135709.0626505015, 134635.75553779321], [-0.007497362866886709, -0.007895434153021436, -0.0019938777296781562, -0.0035311300388783107, 0.001212170001002849, -0.001672412335241874, 0.001839696090252002, 0.004290005139261838, 0.00600429551344886, 0.0036060572293247772 … 0.010368416047796258, 0.005161476804794514, -0.0025695603517498014, 0.0006033009671786438, 0.013376536173073151, 0.005811645790062013, -0.0003164402217366337, 0.004034477127754229, 0.005303186518592234, 0.0010079589742698286], 1.0, [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 … 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1), Main.NewProperties(62, 54, 4743, 4130, 156, 312, [48, 2, 1, 1, 5, 2, 4, 1, 1, 1 … 14, 10, 13, 41, 20, 16, 7, 7, 2, 19], 624, 8873, 0.21340742230566648, 0.07701197259426128, 0.1528683933530887, 0.21215146534992413, 0.17114894621657745, 0.0029486201783457183, 0.08761417854834112, 0.009147800682711324, 0.3585824478060919, 0.9096681249468772, 0.07125099957246343, 0.026713971694295565, 0.7858074440019603, 0.05, 0.03, 0.6, 0.5, [0.0033476048872100555, 0.0, 0.0, 0.0008050086095806136, 0.0, 0.003306696048303853, 0.0030629933432974495, 0.0, 0.0, 0.0 … 0.0017883064872300512, 0.0, 0.0, 0.0, 0.0, 0.002291709084994238, 0.0, 0.0, 0.0, 0.0], [0.0006092803753845975, 0.0, 0.0, 0.004372477702289994, 0.0, 0.0, 0.06710603871527036, 0.0, 0.0, 0.0 … 0.0041711096896454745, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.011287997598927976, 0.0020040637862256817, 0.0003326837475323491, 0.00034402684015257527, 0.06305103828047173, 0.03068200872784047, 0.0003505790613555631, 0.0020473225369636873, 0.0, 0.0191077565617325 … 0.005591228759882936, 0.0004356874830029748, 0.014434120586233577, 0.03514505772295519, 0.024907176866291014, 0.013342154173060372, 0.009686226103767459, 0.011051272187723254, 0.0021206651420422927, 0.01721782824162338], [0.0, 0.0, 0.0, 0.0, 8.57086390274792e-6, 0.0, 0.0, 0.0, 2.4536198623552867e-5, 0.0 … 0.008555738848801895, 0.3324338967920097, 0.22067672180252998, 0.2370889178393625, 0.0477595425645907, 0.012942508661614227, 0.004667927760053456, 0.021757222045203074, 0.0, 0.002000708524749294], [0.005090338238241512, 0.0005933402816643566, 1.793599921320476e-5, 0.007268146142708006, 0.05434404438533037, 0.02138421321578873, 0.023894091259534518, 0.028037089231640524, 0.005923381894006229, 0.011927802553688313 … 0.0014618202435669027, 0.0009447261124040238, 0.0001280209174610526, 0.0010477673386531637, 0.0, 0.0013030104043795392, 5.5260305268213854e-5, 0.0, 1.307076865739618e-5, 8.641230390167474e-6], [0.016810689305736877, 0.004087420487057966, 0.00036885674795364003, 0.05818437780960789, 0.04895082866561155, 0.04689140072807505, 0.010101572733480902, 0.016066325760592727, 0.00037371898454196314, 0.041008926225895866 … 0.0018123421762754539, 0.000401097116716159, 0.0003479865324437806, 0.0006664256271585853, 0.0028556289501379516, 0.001307065586721844, 6.418152296577174e-5, 0.0, 3.538212163497461e-5, 0.00020458795490837936], [0.37790282216028437 0.0 … 0.0 0.0; 0.0006712800413285777 0.8149348034258406 … 2.4029219530949635e-5 0.00019143106686926454; … ; 0.00037430822580994426 0.000357977071568566 … 0.3197327950788158 0.0011366219595362582; 0.0 5.36965607352849e-5 … 0.0 0.05594572929254256], [4.3800671000101816e-5 0.00010629745355671226 9.959785873214212e-5; 0.00010629745355671226 0.0004129178961230129 0.0003596689472264872; 9.959785873214212e-5 0.0003596689472264872 0.0004506370179043619], 219841.0, 405376.9, 0.5902859043576301, 89460.0, 0.0016459319014481277, Main.ConsumerLoanContract[]), BeforeIT.Data(Int64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Vector{Float64}[], Vector{Float64}[]))and evolve it
Bit.step!(model)Main.NewModel{Main.NewWorkers, BeforeIT.Workers, BeforeIT.Firms, BeforeIT.Bank, BeforeIT.CentralBank, BeforeIT.Government, BeforeIT.RestOfTheWorld, BeforeIT.Aggregates, Main.NewProperties, BeforeIT.Data}(Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Workers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4130), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130], [2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417 … 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417, 2.8459530753781417], [623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648 … 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648, 623531.4430300648], [1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6 … 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6, 1.1467118113155388e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 … -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], [2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675 … 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675, 2.245592656275675], [0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246 … 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246], [2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745 … 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745, 2.2455926562756745], [0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246 … 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246, 0.18644203556418246]), BeforeIT.Firms(Base.RefValue{Bool}(false), Base.RefValue{Int64}(624), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 615, 616, 617, 618, 619, 620, 621, 622, 623, 624], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951], [1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485 … 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877], [0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754 … 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946], [0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325, 0.27187910008981325 … 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154, 2.6229386364766154], [0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983 … 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687], [0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721 … 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782], [0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832 … 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318], [-0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635 … 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 12, 1, 1, 2, 1, 1, 1, 2, 5, 6], [10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347 … 145.0141330416374, 12.084511086803117, 12.084511086803117, 24.169022173606233, 12.084511086803117, 12.084511086803117, 12.084511086803117, 24.169022173606233, 60.422555434015585, 72.5070665208187], [10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347 … 135.18006133510258, 12.084511086803117, 12.084511086803117, 24.169022173606233, 12.084511086803117, 12.084511086803117, 12.084511086803117, 24.169022173606233, 49.096282396134725, 63.03737074688969], [10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347 … 135.18006133510258, 12.084511086803117, 12.084511086803117, 24.169022173606233, 12.084511086803117, 12.084511086803117, 12.084511086803117, 24.169022173606233, 49.096282396134725, 63.03737074688969], [0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061 … 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406, 0.998053707662406], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 9.834071706534814, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.32627303788086, 9.469695773929004], [298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534 … 950.5, 79.20833333333333, 79.20833333333333, 158.41666666666666, 79.20833333333333, 79.20833333333333, 79.20833333333333, 158.41666666666666, 396.0416666666667, 475.25], [7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551, 7.655114254073551 … 48.68984006816476, 4.057486672347064, 4.057486672347064, 8.114973344694128, 4.057486672347064, 4.057486672347064, 4.057486672347064, 8.114973344694128, 20.287433361735324, 24.34492003408238], [89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776 … 284.9287771401097, 23.744064761675812, 23.744064761675812, 47.488129523351624, 23.744064761675812, 23.744064761675812, 23.744064761675812, 47.488129523351624, 118.72032380837904, 142.46438857005484], [0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726 … 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956], [7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527, 7.916619974666527 … 146.07023557816888, 12.990430608857828, 12.990430608857828, 25.980861217715656, 12.990430608857828, 12.990430608857828, 12.990430608857828, 25.980861217715656, 53.64792424483541, 68.49131867554209], [1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105, 1.195591166963105 … 43.09662602668624, 3.591385502223854, 3.591385502223854, 7.182771004447708, 3.591385502223854, 3.591385502223854, 3.591385502223854, 7.182771004447708, 17.95692751111927, 21.54831301334312], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 12, 1, 1, 2, 1, 1, 1, 2, 5, 6], [2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754, 2.83022338600754 … 10.119702789739078, 0.8433085658115897, 0.8433085658115897, 1.6866171316231795, 0.8433085658115897, 0.8433085658115897, 0.8433085658115897, 1.6866171316231795, 4.21654282905795, 5.059851394869539], [223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786, 223.75349531029786 … 868.2015147048222, 72.35012622540185, 72.35012622540185, 144.7002524508037, 72.35012622540185, 72.35012622540185, 72.35012622540185, 144.7002524508037, 361.75063112700934, 434.1007573524111], [0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059, 0.9980537076624059 … 0.9980537076624064, 0.9980537076624058, 0.9980537076624058, 0.9980537076624058, 0.9980537076624058, 0.9980537076624058, 0.9980537076624058, 0.9980537076624058, 0.9980537076624062, 0.9980537076624064], [0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061 … 0.998053707662406, 0.9980537076624064, 0.9980537076624064, 0.9980537076624064, 0.9980537076624062, 0.9980537076624064, 0.9980537076624064, 0.9980537076624062, 0.9980537076624062, 0.998053707662406], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 9.834071706534814, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.32627303788086, 9.469695773929004], [6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494, 6.559174839093494 … 41.71919102639746, 3.476599252199789, 3.476599252199789, 6.953198504399578, 3.476599252199789, 3.476599252199789, 3.476599252199789, 6.953198504399578, 17.382996260998944, 20.85959551319873], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555, 297.57336435555 … 948.650049133117, 79.05417076109309, 79.05417076109309, 158.10834152218618, 79.05417076109309, 79.05417076109309, 79.05417076109309, 158.10834152218618, 395.27085380546544, 474.3250245665585], [89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776 … 284.9287771401097, 23.744064761675812, 23.744064761675812, 47.488129523351624, 23.744064761675812, 23.744064761675812, 23.744064761675812, 47.488129523351624, 118.72032380837904, 142.46438857005484], [10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347, 10.909056829933347 … 145.0141330416374, 12.084511086803117, 12.084511086803117, 24.169022173606233, 12.084511086803117, 12.084511086803117, 12.084511086803117, 24.169022173606233, 60.422555434015585, 72.5070665208187], [2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541, 2.830223386007541 … 10.119702789739083, 0.8433085658115902, 0.8433085658115902, 1.6866171316231804, 0.8433085658115902, 0.8433085658115902, 0.8433085658115902, 1.6866171316231804, 4.216542829057952, 5.059851394869542], [6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493, 6.559174839093493 … 41.71919102639747, 3.476599252199789, 3.476599252199789, 6.953198504399578, 3.476599252199789, 3.476599252199789, 3.476599252199789, 6.953198504399578, 17.382996260998944, 20.859595513198734], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 12, 1, 1, 2, 1, 1, 1, 2, 5, 6], [1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341, 1.2624749319561341 … 43.18626363274865, 3.5988553027290533, 3.5988553027290533, 7.197710605458107, 3.5988553027290533, 3.5988553027290533, 3.5988553027290533, 7.197710605458107, 17.994276513645268, 21.593131816374324], [1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435, 1.2759696593184435 … 25.180862402563676, 2.6427904743893853, 2.6427904743893853, 4.691706104223412, 2.6427904743893853, 2.6427904743893853, 2.6427904743893853, 4.691706104223412, 10.838452993725493, 12.887368623559517], [1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308 … 19.909252039676144, 2.088650271338986, 2.088650271338986, 3.708704977551455, 2.088650271338986, 2.088650271338986, 2.088650271338986, 3.708704977551455, 8.56886909618886, 10.18892380240133], [0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743, 0.08609017182071743 … 1.6529807694481018, 0.17341177487459564, 0.17341177487459564, 0.30791804710855075, 0.17341177487459564, 0.17341177487459564, 0.17341177487459564, 0.30791804710855075, 0.711436863810416, 0.8459431360443712], [1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308, 1.0369091768018308 … 19.909252039676147, 2.0886502713389867, 2.0886502713389867, 3.7087049775514553, 2.0886502713389867, 2.0886502713389867, 2.0886502713389867, 3.7087049775514553, 8.568869096188862, 10.18892380240133], [0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174, 0.0860901718207174 … 1.6529807694481018, 0.17341177487459564, 0.17341177487459564, 0.30791804710855075, 0.17341177487459564, 0.17341177487459564, 0.17341177487459564, 0.30791804710855075, 0.7114368638104159, 0.8459431360443712], [529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957, 529497.6348346957 … 1.0166658857095907e7, 1.0665691879417128e6, 1.0665691879417128e6, 1.8938500669557303e6, 1.0665691879417128e6, 1.0665691879417128e6, 1.0665691879417128e6, 1.8938500669557303e6, 4.375692703997783e6, 5.202973583011801e6], [287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757, 287917.4848602757 … 5.528181838508453e6, 579953.4053799799, 579953.4053799799, 1.0297923538462047e6, 579953.4053799799, 579953.4053799799, 579953.4053799799, 1.0297923538462047e6, 2.379309199244879e6, 2.8291481477111042e6]), BeforeIT.Bank(-1.0969711492877852e7, -1.1059171492877852e7, 0.0, 4.1574488673213453e9, 0.029375639476548, 0.5938748445553583, 0.4685955651265175, 0.03890550264064058, 0.4685955651265174, 0.03890550264064056, 0.03890550264064056, 0.011331651960056914), BeforeIT.CentralBank(0.0026616677822524364, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 108269.00000000003), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 10401.973328397973, 14821.413352873134, 270337.6441880343, 2.256469981056924, 0.5950329526316811, [94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387 … 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387, 94.82414454892387], 14792.564223008081, 0.9980537076624062), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3790517109393952e6, 0.010278419265601357, 0.0055170232453505275, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, -2238.8028116039604, 33326.84214578215, 34492.951031540404, [110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306 … 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306, 110.33915918348306], 34398.771544672105, [560.2471888540811, 136.22081735561682, 12.292830613457516, 1939.1015746113521, 1631.3765398440642, 1562.7423100591716, 336.6535199128552, 535.4399024859872, 12.454873604712006, 1366.6980108984574 … 60.39964162287534, 13.36730029392779, 11.597292235611976, 22.209861678218044, 95.16909524817314, 43.560368482863026, 2.138967484556167, 0.0, 1.1791743825116623, 6.818270478159956], [560.2471888540811, 136.22081735561682, 11.344417848214935, 1938.4543205523396, 1310.2091193941956, 1406.6819930524887, 336.6535199128552, 535.4399024859872, 12.454873604712006, 1269.7732063256483 … 60.39964162287534, 13.36730029392779, 11.597292235611976, 22.209861678218044, 95.16909524817314, 43.560368482863026, 2.138967484556167, 0.0, 1.1791743825116623, 6.818270478159956], [560.2471888540811, 136.22081735561682, 11.344417848214935, 1938.4543205523396, 1310.2091193941956, 1406.6819930524887, 336.6535199128552, 535.4399024859872, 12.454873604712006, 1269.7732063256483 … 60.39964162287534, 13.36730029392779, 11.597292235611976, 22.209861678218044, 95.16909524817314, 43.560368482863026, 2.138967484556167, 0.0, 1.1791743825116623, 6.818270478159956], [0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061 … 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061, 0.9980537076624061], 0.9980537076624066), BeforeIT.Aggregates([104531.39273728609, 105062.38754395355, 105399.12953350678, 106689.88106040593, 107938.33111423723, 108890.48532381697, 110110.17779727321, 110374.00540561741, 110808.89423399912, 111932.48072916963 … 141288.21877604182, 140554.06557898276, 139768.5198028018, 137144.71527593565, 135054.13194905635, 133851.32295827195, 134293.63309771818, 135709.0626505015, 134635.75553779321, 135718.4892202904], [-0.007497362866886709, -0.007895434153021436, -0.0019938777296781562, -0.0035311300388783107, 0.001212170001002849, -0.001672412335241874, 0.001839696090252002, 0.004290005139261838, 0.00600429551344886, 0.0036060572293247772 … 0.005161476804794514, -0.0025695603517498014, 0.0006033009671786438, 0.013376536173073151, 0.005811645790062013, -0.0003164402217366337, 0.004034477127754229, 0.005303186518592234, 0.0010079589742698286, -0.0019481888256732722], 0.9980537076624048, [0.9980537076624055, 0.9980537076624061, 0.9980537076624059, 0.9980537076624063, 0.9980537076624063, 0.9980537076624061, 0.9980537076624063, 0.9980537076624058, 0.9980537076624063, 0.9980537076624061 … 0.9980537076624062, 0.998053707662406, 0.9980537076624063, 0.9980537076624066, 0.9980537076624062, 0.9980537076624061, 0.9980537076624061, 0.9980537076624059, 0.998053707662406, 0.998053707662406], 0.9980537076624064, 0.9980537076624056, 0.9980537076624063, 0.9980537076624056, 135718.48922029024, 0.00804194753594345, -0.0019462923375939134, 0.008599479297232168, 0.007159806563409256, 0.0033623563822302843, 2), Main.NewProperties(62, 54, 4743, 4130, 156, 312, [48, 2, 1, 1, 5, 2, 4, 1, 1, 1 … 14, 10, 13, 41, 20, 16, 7, 7, 2, 19], 624, 8873, 0.21340742230566648, 0.07701197259426128, 0.1528683933530887, 0.21215146534992413, 0.17114894621657745, 0.0029486201783457183, 0.08761417854834112, 0.009147800682711324, 0.3585824478060919, 0.9096681249468772, 0.07125099957246343, 0.026713971694295565, 0.7858074440019603, 0.05, 0.03, 0.6, 0.5, [0.0033476048872100555, 0.0, 0.0, 0.0008050086095806136, 0.0, 0.003306696048303853, 0.0030629933432974495, 0.0, 0.0, 0.0 … 0.0017883064872300512, 0.0, 0.0, 0.0, 0.0, 0.002291709084994238, 0.0, 0.0, 0.0, 0.0], [0.0006092803753845975, 0.0, 0.0, 0.004372477702289994, 0.0, 0.0, 0.06710603871527036, 0.0, 0.0, 0.0 … 0.0041711096896454745, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.011287997598927976, 0.0020040637862256817, 0.0003326837475323491, 0.00034402684015257527, 0.06305103828047173, 0.03068200872784047, 0.0003505790613555631, 0.0020473225369636873, 0.0, 0.0191077565617325 … 0.005591228759882936, 0.0004356874830029748, 0.014434120586233577, 0.03514505772295519, 0.024907176866291014, 0.013342154173060372, 0.009686226103767459, 0.011051272187723254, 0.0021206651420422927, 0.01721782824162338], [0.0, 0.0, 0.0, 0.0, 8.57086390274792e-6, 0.0, 0.0, 0.0, 2.4536198623552867e-5, 0.0 … 0.008555738848801895, 0.3324338967920097, 0.22067672180252998, 0.2370889178393625, 0.0477595425645907, 0.012942508661614227, 0.004667927760053456, 0.021757222045203074, 0.0, 0.002000708524749294], [0.005090338238241512, 0.0005933402816643566, 1.793599921320476e-5, 0.007268146142708006, 0.05434404438533037, 0.02138421321578873, 0.023894091259534518, 0.028037089231640524, 0.005923381894006229, 0.011927802553688313 … 0.0014618202435669027, 0.0009447261124040238, 0.0001280209174610526, 0.0010477673386531637, 0.0, 0.0013030104043795392, 5.5260305268213854e-5, 0.0, 1.307076865739618e-5, 8.641230390167474e-6], [0.016810689305736877, 0.004087420487057966, 0.00036885674795364003, 0.05818437780960789, 0.04895082866561155, 0.04689140072807505, 0.010101572733480902, 0.016066325760592727, 0.00037371898454196314, 0.041008926225895866 … 0.0018123421762754539, 0.000401097116716159, 0.0003479865324437806, 0.0006664256271585853, 0.0028556289501379516, 0.001307065586721844, 6.418152296577174e-5, 0.0, 3.538212163497461e-5, 0.00020458795490837936], [0.37790282216028437 0.0 … 0.0 0.0; 0.0006712800413285777 0.8149348034258406 … 2.4029219530949635e-5 0.00019143106686926454; … ; 0.00037430822580994426 0.000357977071568566 … 0.3197327950788158 0.0011366219595362582; 0.0 5.36965607352849e-5 … 0.0 0.05594572929254256], [4.3800671000101816e-5 0.00010629745355671226 9.959785873214212e-5; 0.00010629745355671226 0.0004129178961230129 0.0003596689472264872; 9.959785873214212e-5 0.0003596689472264872 0.0004506370179043619], 219841.0, 405376.9, 0.5902859043576301, 89460.0, 0.0016459319014481277, Main.ConsumerLoanContract[Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(2, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(3, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(12, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(15, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(16, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(19, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(20, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(21, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(31, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(32, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))) … Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4072, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4077, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4080, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4090, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4096, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4097, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4100, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4101, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4113, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4118, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378 … 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378, 4.651421974576378], [0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752 … 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752, 0.08875320350489752], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616 … 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616, 3.6701936928317616], [0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774 … 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774, 0.3047206184496774], [3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761 … 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761, 3.670193692831761], [0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735 … 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735, 0.30472061844967735], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0])))]), BeforeIT.Data(Int64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Vector{Float64}[], Vector{Float64}[]))