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, 2, 1, 1, 3, 1, 1, 1, 4 … 1, 1, 1, 1, 3, 1, 1, 1, 7, 1], [10.822026659306621, 10.822026659306621, 21.644053318613242, 10.822026659306621, 10.822026659306621, 32.46607997791986, 10.822026659306621, 10.822026659306621, 10.822026659306621, 43.288106637226484 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 35.96431016489685, 11.988103388298951, 11.988103388298951, 11.988103388298951, 83.91672371809265, 11.988103388298951], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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, 21.644053318613242, 10.822026659306621, 10.822026659306621, 32.46607997791986, 10.822026659306621, 10.822026659306621, 10.822026659306621, 43.288106637226484 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 35.96431016489685, 11.988103388298951, 11.988103388298951, 11.988103388298951, 83.91672371809265, 11.988103388298951], [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, 596.3073170731707, 298.15365853658534, 298.15365853658534, 894.460975609756, 298.15365853658534, 298.15365853658534, 298.15365853658534, 1192.6146341463414 … 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 237.625, 79.20833333333334, 79.20833333333334, 79.20833333333334, 554.4583333333334, 79.20833333333334], [7.65511425407355, 7.65511425407355, 15.3102285081471, 7.65511425407355, 7.65511425407355, 22.965342762220647, 7.65511425407355, 7.65511425407355, 7.65511425407355, 30.6204570162942 … 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 12.172460017041193, 4.057486672347064, 4.057486672347064, 4.057486672347064, 28.402406706429453, 4.057486672347064], [94.08074124607997, 94.08074124607997, 188.16148249215993, 94.08074124607997, 94.08074124607997, 282.2422237382399, 94.08074124607997, 94.08074124607997, 94.08074124607997, 376.32296498431987 … 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 74.9812571421341, 24.99375238071137, 24.99375238071137, 24.99375238071137, 174.95626666497958, 24.99375238071137], [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.384292053067, 12.384292053067, 24.768584106134, 12.384292053067, 12.384292053067, 37.15287615920099, 12.384292053067, 12.384292053067, 12.384292053067, 49.537168212268 … 13.530111496595191, 13.530111496595191, 13.530111496595191, 13.530111496595191, 40.590334489785576, 13.530111496595191, 13.530111496595191, 13.530111496595191, 94.71078047616633, 13.530111496595191], [1.2548454674764373, 1.2548454674764373, 2.5096909349528747, 1.2548454674764373, 1.2548454674764373, 3.764536402429312, 1.2548454674764373, 1.2548454674764373, 1.2548454674764373, 5.019381869905749 … 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 10.731319451394864, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 25.03974538658801, 3.5771064837982878], [1, 1, 2, 1, 1, 3, 1, 1, 1, 4 … 1, 1, 1, 1, 3, 1, 1, 1, 7, 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], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.3061857958470848, 1.3061857958470848, 2.02208568733654, 1.3061857958470848, 1.3061857958470848, 2.7379855788259944, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 3.4538854703154493 … 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 6.712593893597363, 2.631055234104208, 2.631055234104208, 2.631055234104208, 14.87567121258367, 2.631055234104208], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.5487445241, 529497.5487445241, 819706.8274668558, 529497.5487445241, 529497.5487445241, 1.1099161061891874e6, 529497.5487445241, 529497.5487445241, 529497.5487445241, 1.400125384911519e6 … 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 2.721130503545429e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 6.030253481576409e6, 1.066569014529938e6], [287153.191544819, 287153.191544819, 444537.33958975226, 287153.191544819, 287153.191544819, 601921.4876346855, 287153.191544819, 287153.191544819, 287153.191544819, 759305.6356796187 … 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 1.475703354162338e6, 578413.8137207031, 578413.8137207031, 578413.8137207031, 3.2702824350456065e6, 578413.8137207031]), 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204 … 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204, 2.839759478420204], [622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923 … 622357.6988924042, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923, 622357.6971189923], [1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6 … 1.1467118100963489e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6, 1.1467118109097884e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256 … 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256, 2.2407056129983256], [0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685 … 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685, 0.18603628508491685], [2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247 … 2.2399347501265727, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247, 2.2407056129983247], [0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682 … 0.18522284557656615, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682, 0.18603628508491682]), 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.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284, 0.270371517540284 … 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938, 2.608394316903938], [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, 2, 1, 1, 3, 1, 1, 1, 4 … 1, 1, 1, 1, 3, 1, 1, 1, 7, 1], [10.848565590617056, 10.848565590617056, 21.697131181234113, 10.848565590617056, 10.848565590617056, 32.54569677185117, 10.848565590617056, 10.848565590617056, 10.848565590617056, 43.394262362468226 … 12.017501897689137, 12.017501897689137, 12.017501897689137, 12.017501897689137, 36.05250569306741, 12.017501897689137, 12.017501897689137, 12.017501897689137, 84.12251328382395, 12.017501897689137], [10.848565590617056, 10.848565590617056, 21.697131181234113, 10.848565590617056, 10.848565590617056, 32.54569677185117, 10.848565590617056, 10.848565590617056, 10.848565590617056, 43.394262362468226 … 12.017501897689137, 12.017501897689137, 12.017501897689137, 12.017501897689137, 36.05250569306741, 12.017501897689137, 12.017501897689137, 12.017501897689137, 84.12251328382395, 12.017501897689137], [10.848565590617056, 10.848565590617056, 21.697131181234113, 10.848565590617056, 10.848565590617056, 32.54569677185117, 10.848565590617056, 10.848565590617056, 10.848565590617056, 43.394262362468226 … 12.017501897689137, 12.017501897689137, 12.017501897689137, 12.017501897689137, 36.05250569306741, 12.017501897689137, 12.017501897689137, 12.017501897689137, 84.12251328382395, 12.017501897689137], [1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887 … 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698, 1.0014346640388698], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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, 596.3073170731707, 298.15365853658534, 298.15365853658534, 894.460975609756, 298.15365853658534, 298.15365853658534, 298.15365853658534, 1192.6146341463414 … 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 237.625, 79.20833333333334, 79.20833333333334, 79.20833333333334, 554.4583333333334, 79.20833333333334], [7.65511425407355, 7.65511425407355, 15.3102285081471, 7.65511425407355, 7.65511425407355, 22.965342762220654, 7.65511425407355, 7.65511425407355, 7.65511425407355, 30.6204570162942 … 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 12.17246001704119, 4.057486672347064, 4.057486672347064, 4.057486672347064, 28.40240670642945, 4.057486672347064], [89.37670418377597, 89.37670418377597, 178.75340836755194, 89.37670418377597, 89.37670418377597, 268.1301125513279, 89.37670418377597, 89.37670418377597, 89.37670418377597, 357.5068167351039 … 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 71.23219428502739, 23.7440647616758, 23.7440647616758, 23.7440647616758, 166.2084533317306, 23.7440647616758], [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.945414827003337, 7.945414827003337, 15.890829654006675, 7.945414827003337, 7.945414827003337, 23.83624448101, 7.945414827003337, 7.945414827003337, 7.945414827003337, 31.78165930801335 … 12.992862570049107, 12.992862570049107, 12.992862570049107, 12.992862570049107, 38.97858771014732, 12.992862570049107, 12.992862570049107, 12.992862570049107, 90.95003799034373, 12.992862570049107], [1.3412424835809684, 1.3412424835809684, 2.682484967161937, 1.3412424835809689, 1.3412424835809684, 4.02372745074292, 1.3412424835809684, 1.3412424835809684, 1.3412424835809684, 5.364969934323874 … 3.6036869492092816, 3.6036869492092816, 3.6036869492092816, 3.6036869492092816, 10.81106084762785, 3.6036869492092816, 3.6036869492092816, 3.6036869492092816, 25.22580864446497, 3.6036869492092816], [1, 1, 2, 1, 1, 3, 1, 1, 1, 4 … 1, 1, 1, 1, 3, 1, 1, 1, 7, 1], [2.8145296626334195, 2.8145296626334195, 5.629059325266839, 2.8145296626334195, 2.8145296626334195, 8.443588987900258, 2.8145296626334195, 2.8145296626334195, 2.8145296626334195, 11.258118650533678 … 0.8386323796786133, 0.8386323796786133, 0.8386323796786133, 0.8386323796786133, 2.5158971390358404, 0.8386323796786133, 0.8386323796786133, 0.8386323796786133, 5.870426657750295, 0.8386323796786133], [224.81621628297978, 224.81621628297978, 449.63243256595956, 224.81621628297978, 224.81621628297978, 674.4486488489395, 224.81621628297978, 224.81621628297978, 224.81621628297978, 899.2648651319191 … 72.63407629168283, 72.63407629168283, 72.63407629168283, 72.63407629168283, 217.90222887504848, 72.63407629168283, 72.63407629168283, 72.63407629168283, 508.43853404177975, 72.63407629168283], [1.0014346640388703, 1.0014346640388703, 1.0014346640388703, 1.0014346640388703, 1.0014346640388703, 1.0014346640388696, 1.0014346640388703, 1.0014346640388703, 1.0014346640388703, 1.0014346640388703 … 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887], [1.0014346640388696, 1.0014346640388696, 1.0014346640388696, 1.0014346640388694, 1.0014346640388696, 1.0014346640388694, 1.0014346640388696, 1.0014346640388696, 1.0014346640388696, 1.0014346640388696 … 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.0014346640388698, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.522803902440171, 6.522803902440171, 13.045607804880342, 6.522803902440171, 6.522803902440171, 19.56841170732052, 6.522803902440171, 6.522803902440171, 6.522803902440171, 26.091215609760685 … 3.457321343884691, 3.457321343884691, 3.457321343884691, 3.457321343884691, 10.37196403165407, 3.457321343884691, 3.457321343884691, 3.457321343884691, 24.20124940719283, 3.457321343884691], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.58140886854534, 298.58140886854534, 597.1628177370907, 298.58140886854534, 298.58140886854534, 895.744226605636, 298.58140886854534, 298.58140886854534, 298.58140886854534, 1194.3256354741814 … 79.32197068074551, 79.32197068074551, 79.32197068074551, 79.32197068074551, 237.96591204223648, 79.32197068074551, 79.32197068074551, 79.32197068074551, 555.2537947652186, 79.32197068074551], [89.37670418377597, 89.37670418377597, 178.75340836755194, 89.37670418377597, 89.37670418377597, 268.1301125513279, 89.37670418377597, 89.37670418377597, 89.37670418377597, 357.5068167351039 … 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 71.23219428502739, 23.7440647616758, 23.7440647616758, 23.7440647616758, 166.2084533317306, 23.7440647616758], [10.848565590617056, 10.848565590617056, 21.697131181234113, 10.848565590617056, 10.848565590617056, 32.54569677185117, 10.848565590617056, 10.848565590617056, 10.848565590617056, 43.394262362468226 … 12.017501897689137, 12.017501897689137, 12.017501897689137, 12.017501897689137, 36.05250569306741, 12.017501897689137, 12.017501897689137, 12.017501897689137, 84.12251328382395, 12.017501897689137], [2.81452966263342, 2.81452966263342, 5.62905932526684, 2.81452966263342, 2.81452966263342, 8.44358898790026, 2.81452966263342, 2.81452966263342, 2.81452966263342, 11.25811865053368 … 0.8386323796786138, 0.8386323796786138, 0.8386323796786138, 0.8386323796786138, 2.5158971390358413, 0.8386323796786138, 0.8386323796786138, 0.8386323796786138, 5.870426657750296, 0.8386323796786138], [6.522803902440171, 6.522803902440171, 13.045607804880342, 6.522803902440171, 6.522803902440171, 19.568411707320514, 6.522803902440171, 6.522803902440171, 6.522803902440171, 26.091215609760685 … 3.457321343884691, 3.457321343884691, 3.457321343884691, 3.457321343884691, 10.371964031654072, 3.457321343884691, 3.457321343884691, 3.457321343884691, 24.201249407192833, 3.457321343884691], [1, 1, 2, 1, 1, 3, 1, 1, 1, 4 … 1, 1, 1, 1, 3, 1, 1, 1, 7, 1], [1.2597274302612953, 1.2597274302612953, 2.5194548605225906, 1.2597274302612953, 1.2597274302612953, 3.779182290783887, 1.2597274302612953, 1.2597274302612953, 1.2597274302612953, 5.038909721045181 … 3.5910231780718047, 3.5910231780718047, 3.5910231780718047, 3.5910231780718047, 10.773069534215415, 3.5910231780718047, 3.5910231780718047, 3.5910231780718047, 25.137162246502626, 3.5910231780718047], [1.3577725210252294, 1.3577725210252294, 2.1229626367353873, 1.3577725210252296, 1.3577725210252294, 2.8881527524455537, 1.3577725210252294, 1.3577725210252294, 1.3577725210252294, 3.653342868155703 … 2.64851611410008, 2.64851611410008, 2.64851611410008, 2.64851611410008, 6.760383531670099, 2.64851611410008, 2.64851611410008, 2.64851611410008, 14.98411836681013, 2.64851611410008], [1.0346525698399456, 1.0346525698399456, 1.6017293707305418, 1.0346525698399456, 1.0346525698399456, 2.1688061716211386, 1.0346525698399456, 1.0346525698399456, 1.0346525698399456, 2.735882972511735 … 2.0841047789769784, 2.0841047789769784, 2.0841047789769784, 2.0841047789769784, 5.317162799032238, 2.0841047789769784, 2.0841047789769784, 2.0841047789769784, 11.783278839142755, 2.0841047789769784], [0.08590281531406588, 0.08590281531406588, 0.1329847973395219, 0.08590281531406588, 0.08590281531406588, 0.180066779364978, 0.08590281531406588, 0.08590281531406588, 0.08590281531406588, 0.227148761390434 … 0.17303438191944606, 0.17303438191944606, 0.17303438191944606, 0.17303438191944606, 0.4414614791811186, 0.17303438191944606, 0.17303438191944606, 0.17303438191944606, 0.9783156737044633, 0.17303438191944606], [1.0346525698399458, 1.0346525698399458, 1.6017293707305418, 1.0346525698399458, 1.0346525698399458, 2.168060044087013, 1.0346525698399458, 1.0346525698399458, 1.0346525698399458, 2.735882972511734 … 2.0841047789769775, 2.0841047789769775, 2.0841047789769775, 2.0833877909953196, 5.317162799032239, 2.0841047789769775, 2.0841047789769775, 2.0841047789769775, 11.779225074957084, 2.0841047789769775], [0.08590281531406586, 0.08590281531406586, 0.13298479733952187, 0.08590281531406586, 0.08590281531406586, 0.17927944138728144, 0.08590281531406586, 0.08590281531406586, 0.08590281531406586, 0.22714876139043397 … 0.173034381919446, 0.173034381919446, 0.173034381919446, 0.1722777929427737, 0.44146147918111855, 0.173034381919446, 0.173034381919446, 0.173034381919446, 0.9740380102353899, 0.173034381919446], [529497.6346473395, 529497.6346473395, 819706.9604516531, 529497.6346473395, 529497.6346473395, 1.1099162854686289e6, 529497.6346473395, 529497.6346473395, 529497.6346473395, 1.4001256120602803e6 … 1.06656918756432e6, 1.06656918756432e6, 1.06656918756432e6, 1.0665691868077312e6, 2.7211309450069084e6, 1.06656918756432e6, 1.06656918756432e6, 1.06656918756432e6, 6.03025445561442e6, 1.06656918756432e6], [287375.5888111769, 287375.5888111769, 444881.6503163692, 287375.5888111769, 287375.5888111769, 602387.7135380682, 287375.5888111769, 287375.5888111769, 287375.5888111769, 759893.7733267538 … 578861.7029667748, 578861.7029667748, 578861.7029667748, 578861.7046162445, 1.4768460542883554e6, 578861.7029667748, 578861.7029667748, 578861.7029667748, 3.2728147662574197e6, 578861.7029667748]), BeforeIT.Bank(-3.123005946561333e6, -3.212465946561333e6, 0.0, 4.157448153967704e9, 0.027488212579471115, 0.5925824053150714, 0.4675757689493491, 0.03882083328860984, 0.46757576894934916, 0.038820833288609836, 0.038820833288609836, 0.011306991087846809), BeforeIT.CentralBank(0.0007742408851755498, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 108269.00000000003), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 10395.79278162185, 14711.25456908547, 270336.9027731706, 2.243957747619877, 0.5917334665899586, [94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332 … 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332, 94.43820690373332], 14732.360276982401, 1.0014346640388703), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3341091046538088e6, -0.008806725049294584, 0.005071951396882879, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, -1526.6454887405707, 32376.884057888776, 33047.41625002082, [106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479 … 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479, 106.07316727465479], 33060.76938860199, [544.2777385850336, 132.33793920531502, 11.942432162464906, 1883.828854322071, 1584.8753042440833, 1518.1974446848872, 327.05744919424177, 520.1775663869824, 12.099856232747069, 1327.7412497543448 … 58.67799251449219, 12.986274843872561, 11.266719614639035, 21.57678526371933, 92.4563674309671, 42.31871095734951, 2.077997727721517, 0.0, 1.1455628498976909, 6.623920495709176], [544.2777385850336, 128.70600736337167, 11.942432162464906, 1883.828854322071, 1584.8753042440833, 1374.0108642349528, 327.05744919424177, 520.1775663869824, 12.099856232747069, 1325.7849045263051 … 58.67799251449219, 12.986274843872561, 11.266719614639035, 21.57678526371933, 92.4563674309671, 42.31871095734951, 2.077997727721517, 0.0, 1.1455628498976909, 6.623920495709176], [544.2777385850336, 128.70600736337167, 11.942432162464906, 1910.4445366764087, 1584.8753042440833, 1374.0108642349528, 327.05744919424177, 520.1775663869824, 12.099856232747069, 1325.7849045263051 … 58.67799251449219, 12.986274843872561, 11.266719614639035, 21.57678526371933, 92.4563674309671, 42.31871095734951, 2.077997727721517, 0.0, 1.1455628498976909, 6.623920495709176], [1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887 … 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.00143466403887], 1.0014346640388698), 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, 134965.92373831925], [-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.0014336358916622446], 1.001434664038868, [1.0014346640388707, 1.00143466403887, 1.0014346640388698, 1.00143466403887, 1.0014346640388703, 1.00143466403887, 1.0014346640388703, 1.0014346640388698, 1.0014346640388703, 1.00143466403887 … 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.0014346640388703, 1.0014346640388698, 1.00143466403887, 1.00143466403887, 1.00143466403887, 1.0014346640388703, 1.0014346640388698], 1.0014346640388705, 1.0014346640388694, 1.0014346640388698, 1.0014346640388692, 134965.92373831908, 0.00245230696115617, 0.0014346640388700482, -0.010472209652542457, -0.03565179243398274, -0.025556073183060968, 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}(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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(18, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(22, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(23, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(24, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(26, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4073, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4075, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4082, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4086, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4091, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4093, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4102, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4103, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4108, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4115, 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.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251 … 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251, 4.66387467724251], [0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.09190337212922445, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732 … 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732, 0.08899081197386732], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [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.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518 … 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518, 3.680019468913518], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [3.680019468913517, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.678753443443927, 3.680019468913517, 3.680019468913517, 3.680019468913517 … 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517, 3.680019468913517], [0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3042004598262391, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451 … 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451, 0.3055364109704451], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}[]))