Working with Single Agents
To support complex extensions of the base model, we implemented a way to retrieve single agents from containers of multiple instances having a SoA (Struct-Of-Arrays) layout under the hood.
In practice, this allows to operate on agents as if they were single structs. Let's see how this unfolds with a concrete example. As usual, we create a model instance with
import BeforeIT as Bit
parameters = Bit.AUSTRIA2010Q1.parameters
initial_conditions = Bit.AUSTRIA2010Q1.initial_conditions
model = Bit.Model(parameters, initial_conditions);Three containers in this model have multiple instances of agents: model.firms, model.w_act, model.w_inact. Each of them to be compatible with this approach contains IDs which correspond to single instances. IDs are UInt and are set internally.
One invariant of IDs one could rely on is that at initialization IDs are mapped one-to-one to indices of the arrays. Though, if any deletion happens this won't be true anymore.
id = 1
agent = model.w_act[id]Agent{Workers}(ID = 1, Y_h = 0.7661282859097249, D_h = 3.781806633594487, K_h = 6.973481059156249, w_h = 0.2697101055708983, O_h = 1, C_d_h = 0.0, I_d_h = 0.0, C_h = 0.0, I_h = 0.0)Then we can access or modify attributes of the agent simply with
agent.Y_h0.7661282859097249and
agent.Y_h = 1.01.0Now, we will show how to add or remove agent instances from the model. Since agents are added by passing a NamedTuple of the fields we will use the fields of the agent we retrieved for ease of exposition
agentfields = Bit.getfields(agent)(Y_h = 1.0, D_h = 3.781806633594487, K_h = 6.973481059156249, w_h = 0.2697101055708983, O_h = 1, C_d_h = 0.0, I_d_h = 0.0, C_h = 0.0, I_h = 0.0)Importantly, fields can be accessed as long as the agent is still inside the model, and not after that. So, if you need those fields for something else after removing an agent, retrieve the fields before removing it.
delete!(model.w_act, id)
push!(model.w_act, agentfields);We can also retrieve the id of the last agent added to the container with
id = Bit.lastid(model.w_act)4119Let's finally verify that the last agent has Y_h equal to 1.0 as it should be
agent = model.w_act[id]
agent.Y_h1.0A More Complex Example
Let's now use this capability to extend the base model.
When extending the BeforeIT models it is required to first create a new model type to use instead of the default model, we can do so by using
Bit.@object struct NewModel(Bit.Model) <: Bit.AbstractModel endLet's say that we want to add the posssibilty for workers to sign financial contracts to borrow money. At issuance, the worker’s deposit would increase by principal, and in time step period the money_to_be_paid should be paid by the debtor. In each time step a worker signs a new ConsumerLoanContract with a probability of 30% for a principal which is 20% of its Y_h, which should be repaid by a 10% margin 5 time steps later. A worker can have multiple ConsumerLoanContracts. A worker can only sign a new ConsumerLoanContract if the sum of money_to_be_paid is less than its Y_h.
To perform this last operation efficiently, we first store the sum of money_to_be_paid as a new field for the workers with
Bit.@object mutable struct NewWorkers(Bit.Workers) <: Bit.AbstractWorkers
sum_money_to_be_paid::Vector{Float64}
endLet’s introduce a new ConsumerLoanContract struct into the model. A worker could sign a ConsumerLoanContract and get a credit which would be repaid.
To do so, we first define it with
struct ConsumerLoanContract
principal::Float64
money_to_be_paid::Float64
period::Int32
debtor::Bit.Agent{NewWorkers}
endand store a vector of contracts into the properties of the model
Bit.@object mutable struct NewProperties(Bit.Properties) <: Bit.AbstractProperties
contracts::Vector{ConsumerLoanContract}
endWe want that to happen before the search & matching process, to do so we could either specialize the step! function or the function we want to call immediately after this new process. For the matter of brevity, we will follow this second approach:
function Bit.search_and_matching_credit!(model::NewModel)
sign_and_repay_contracts!(model.w_act, model)
return @invoke Bit.search_and_matching_credit!(model::Bit.AbstractModel)
end
function sign_and_repay_contracts!(workers, model)
for id in Bit.allids(workers)
agent = workers[id]
if rand() < 0.3 && agent.sum_money_to_be_paid <= agent.Y_h
principal = 0.2 * agent.Y_h
agent.Y_h += principal
money_to_be_paid = 1.1 * principal
period = model.agg.t + 5
new_contract = ConsumerLoanContract(principal, money_to_be_paid, period, agent)
push!(model.prop.contracts, new_contract)
agent.sum_money_to_be_paid += money_to_be_paid
end
end
repaid_contracts_indices = Int[]
for (i, contract) in enumerate(model.prop.contracts)
if contract.period == model.agg.t
debtor = contract.debtor
if debtor.Y_h <= contract.money_to_be_paid
debtor.Y_h -= contract.money_to_be_paid
debtor.sum_money_to_be_paid -= contract.money_to_be_paid
push!(repaid_contracts_indices, i)
end
end
end
for i in repaid_contracts_indices
contracts = model.prop.contracts
contracts[i], contracts[end] = contracts[end], contracts[i]
pop!(contracts)
end
return
endsign_and_repay_contracts! (generic function with 1 method)Now, we just create the new model
p, ic = Bit.AUSTRIA2010Q1.parameters, Bit.AUSTRIA2010Q1.initial_conditions
firms = Bit.Firms(p, ic)
w_act, w_inact = Bit.Workers(p, ic)
cb = Bit.CentralBank(p, ic)
bank = Bit.Bank(p, ic)
gov = Bit.Government(p, ic)
rotw = Bit.RestOfTheWorld(p, ic)
agg = Bit.Aggregates(p, ic)
prop = Bit.Properties(p, ic)
data = Bit.Data()
w_act_new = NewWorkers(Bit.fields(w_act)..., zeros(length(w_act.Y_h)))
prop_new = NewProperties(Bit.fields(prop)..., ConsumerLoanContract[])
model = NewModel(w_act_new, w_inact, firms, bank, cb, gov, rotw, agg, prop_new, data)Main.NewModel{Main.NewWorkers, BeforeIT.Workers, BeforeIT.Firms, BeforeIT.Bank, BeforeIT.CentralBank, BeforeIT.Government, BeforeIT.RestOfTheWorld, BeforeIT.Aggregates, Main.NewProperties, BeforeIT.Data}(Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Workers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4130), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130], [2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714 … 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714], [621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451 … 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451], [1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6 … 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 … -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Firms(Base.RefValue{Bool}(false), Base.RefValue{Int64}(624), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 615, 616, 617, 618, 619, 620, 621, 622, 623, 624], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951], [1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485 … 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877], [0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754 … 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983 … 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687], [0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721 … 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782], [0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832 … 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318], [-0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635 … 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037], [1, 1, 1, 1, 1, 1, 1, 73, 1, 1 … 2, 1, 4, 2, 2, 3, 1, 4, 9, 4], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 790.0079461293833, 10.822026659306621, 10.822026659306621 … 23.976206776597902, 11.988103388298951, 47.952413553195804, 23.976206776597902, 23.976206776597902, 35.96431016489685, 11.988103388298951, 47.952413553195804, 107.89293049469056, 47.952413553195804], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 790.0079461293833, 10.822026659306621, 10.822026659306621 … 23.976206776597902, 11.988103388298951, 47.952413553195804, 23.976206776597902, 23.976206776597902, 35.96431016489685, 11.988103388298951, 47.952413553195804, 107.89293049469056, 47.952413553195804], [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 … 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 21765.21707317073, 298.15365853658534, 298.15365853658534 … 158.41666666666669, 79.20833333333334, 316.83333333333337, 158.41666666666669, 158.41666666666669, 237.625, 79.20833333333334, 316.83333333333337, 712.8750000000001, 316.83333333333337], [7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 558.8233405473691, 7.65511425407355, 7.65511425407355 … 8.114973344694128, 4.057486672347064, 16.229946689388257, 8.114973344694128, 8.114973344694128, 12.172460017041193, 4.057486672347064, 16.229946689388257, 36.51738005112358, 16.229946689388257], [94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 94.08074124608001, 6867.89411096384, 94.08074124608001, 94.08074124608001 … 49.98750476142276, 24.99375238071138, 99.97500952284553, 49.98750476142276, 49.98750476142276, 74.98125714213413, 24.99375238071138, 99.97500952284553, 224.94377142640244, 99.97500952284553], [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.384292053067014, 12.384292053067014, 12.384292053067014, 12.384292053067014, 12.384292053067014, 12.384292053067014, 12.384292053067014, 904.0533198738921, 12.384292053067014, 12.384292053067014 … 27.06022299319041, 13.530111496595206, 54.12044598638082, 27.06022299319041, 27.06022299319041, 40.59033448978562, 13.530111496595206, 54.12044598638082, 121.77100346935686, 54.12044598638082], [1.2548454674764362, 1.2548454674764362, 1.2548454674764362, 1.2548454674764362, 1.2548454674764362, 1.2548454674764362, 1.2548454674764362, 91.60371912577989, 1.2548454674764362, 1.2548454674764362 … 7.154212967596575, 3.5771064837982873, 14.30842593519315, 7.154212967596575, 7.154212967596575, 10.731319451394864, 3.5771064837982873, 14.30842593519315, 32.19395835418458, 14.30842593519315], [1, 1, 1, 1, 1, 1, 1, 73, 1, 1 … 2, 1, 4, 2, 2, 3, 1, 4, 9, 4], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.3061857958470844, 1.3061857958470844, 1.3061857958470844, 1.3061857958470844, 1.3061857958470844, 1.3061857958470844, 1.3061857958470844, 52.850977983087816, 1.3061857958470844, 1.3061857958470844 … 4.671824563850785, 2.631055234104207, 8.75336322334394, 4.671824563850785, 4.671824563850785, 6.712593893597363, 2.631055234104207, 8.75336322334394, 18.95720987207682, 8.75336322334394], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.548744524, 529497.548744524, 529497.548744524, 529497.548744524, 529497.548744524, 529497.548744524, 529497.548744524, 2.1424565616752394e7, 529497.548744524, 529497.548744524 … 1.8938497590376833e6, 1.0665690145299379e6, 3.548411248053174e6, 1.8938497590376833e6, 1.8938497590376833e6, 2.721130503545429e6, 1.0665690145299379e6, 3.548411248053174e6, 7.684814970591898e6, 3.548411248053174e6], [287153.19154481887, 287153.19154481887, 287153.19154481887, 287153.19154481887, 287153.19154481887, 287153.19154481887, 287153.19154481887, 1.1618811850780008e7, 287153.19154481887, 287153.19154481887 … 1.0270585839415203e6, 578413.813720703, 1.924348124383155e6, 1.0270585839415203e6, 1.0270585839415203e6, 1.475703354162338e6, 578413.813720703, 1.924348124383155e6, 4.16757197548724e6, 1.924348124383155e6]), 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701 … 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701, 2.84516069521701], [623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634 … 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634, 623566.5222815634], [1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6 … 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6, 1.146711811263629e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099 … 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099, 2.244967430552099], [0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346 … 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346, 0.18639012572369346], [2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098 … 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098, 2.244967430552098], [0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934 … 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934, 0.1863901257236934]), 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.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566, 0.26945638235663566 … 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347, 2.599565600647347], [0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983 … 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687], [0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721 … 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782], [0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832 … 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318], [-0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635 … 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037], [1, 1, 1, 1, 1, 1, 1, 73, 1, 1 … 2, 1, 4, 2, 2, 3, 1, 4, 9, 4], [10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 789.264765391084, 10.811846101247726, 10.811846101247726 … 23.95365174390342, 11.97682587195171, 47.90730348780684, 23.95365174390342, 23.95365174390342, 35.93047761585513, 11.97682587195171, 47.90730348780684, 107.79143284756539, 47.90730348780684], [10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 789.264765391084, 10.811846101247726, 10.811846101247726 … 23.95365174390342, 11.97682587195171, 46.17786791329872, 23.95365174390342, 23.95365174390342, 35.93047761585513, 11.97682587195171, 47.90730348780684, 75.33083023676258, 47.90730348780684], [10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 789.264765391084, 10.811846101247726, 10.811846101247726 … 23.95365174390342, 11.97682587195171, 46.17786791329872, 23.95365174390342, 23.95365174390342, 35.93047761585513, 11.97682587195171, 47.90730348780684, 75.33083023676258, 47.90730348780684], [1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676 … 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758, 1.0067469596086758], [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.7294355745081234, 0.0, 0.0, 0.0, 0.0, 0.0, 32.46060261080281, 0.0], [298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 21765.21707317073, 298.15365853658534, 298.15365853658534 … 158.41666666666669, 79.20833333333334, 316.83333333333337, 158.41666666666669, 158.41666666666669, 237.625, 79.20833333333334, 316.83333333333337, 712.8750000000001, 316.83333333333337], [7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 558.8233405473691, 7.655114254073552, 7.655114254073552 … 8.114973344694128, 4.057486672347064, 16.229946689388257, 8.114973344694128, 8.114973344694128, 12.172460017041189, 4.057486672347064, 16.229946689388257, 36.51738005112358, 16.229946689388257], [89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 6524.499405415648, 89.376704183776, 89.376704183776 … 47.488129523351624, 23.744064761675812, 94.97625904670325, 47.488129523351624, 47.488129523351624, 71.23219428502742, 23.744064761675812, 94.97625904670325, 213.6965828550823, 94.97625904670325], [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.915492789886066, 7.915492789886066, 7.915492789886066, 7.915492789886066, 7.915492789886066, 7.915492789886066, 7.915492789886066, 577.830973661683, 7.915492789886066, 7.915492789886066 … 25.980133308731713, 12.990066654365856, 50.21916261098829, 25.980133308731713, 25.980133308731713, 38.97019996309758, 12.990066654365856, 51.960266617463425, 84.23098690380155, 51.960266617463425], [1.189889594146341, 1.189889594146341, 1.189889594146341, 1.189889594146341, 1.189889594146341, 1.189889594146341, 1.189889594146341, 86.86194037268288, 1.189889594146341, 1.189889594146341 … 7.179089065028471, 3.5895445325142354, 14.358178130056935, 7.179089065028471, 7.179089065028471, 10.768633597542701, 3.5895445325142354, 14.358178130056942, 32.305900792628115, 14.358178130056938], [1, 1, 1, 1, 1, 1, 1, 73, 1, 1 … 2, 1, 4, 2, 2, 3, 1, 4, 9, 4], [2.8050032334328496, 2.8050032334328496, 2.8050032334328496, 2.8050032334328496, 2.8050032334328496, 2.8050032334328496, 2.8050032334328496, 204.7652360405981, 2.8050032334328496, 2.8050032334328496 … 1.6715876673042438, 0.8357938336521219, 3.3431753346084876, 1.6715876673042438, 1.6715876673042438, 2.5073815009563645, 0.8357938336521219, 3.3431753346084876, 7.522144502869091, 3.3431753346084876], [226.41084083476625, 226.41084083476625, 226.41084083476625, 226.41084083476625, 226.41084083476625, 226.41084083476625, 226.41084083476625, 16527.991380937936, 226.41084083476625, 226.41084083476625 … 146.1472260454641, 73.07361302273205, 292.2944520909282, 146.1472260454641, 146.1472260454641, 219.2208390681961, 73.07361302273205, 292.2944520909282, 657.6625172045885, 292.2944520909282], [1.0067469596086756, 1.0067469596086756, 1.0067469596086756, 1.0067469596086756, 1.0067469596086756, 1.0067469596086756, 1.0067469596086756, 1.0067469596086758, 1.0067469596086756, 1.0067469596086756 … 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.0067469596086758, 1.006746959608676], [1.0067469596086762, 1.0067469596086762, 1.0067469596086762, 1.0067469596086762, 1.0067469596086762, 1.0067469596086762, 1.0067469596086762, 1.0067469596086758, 1.0067469596086762, 1.0067469596086762 … 1.006746959608675, 1.006746959608675, 1.006746959608675, 1.006746959608675, 1.006746959608675, 1.006746959608676, 1.006746959608675, 1.006746959608675, 1.0067469596086758, 1.0067469596086753], [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.7294355745081234, 0.0, 0.0, 0.0, 0.0, 0.0, 32.46060261080281, 0.0], [6.50072595798261, 6.50072595798261, 6.50072595798261, 6.50072595798261, 6.50072595798261, 6.50072595798261, 6.50072595798261, 474.55299493273037, 6.50072595798261, 6.50072595798261 … 6.891238473954621, 3.4456192369773104, 13.782476947909242, 6.891238473954621, 6.891238473954621, 10.336857710931927, 3.4456192369773104, 13.782476947909242, 31.010573132795795, 13.782476947909242], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [300.16528922791065, 300.16528922791065, 300.16528922791065, 300.16528922791065, 300.16528922791065, 300.16528922791065, 300.16528922791065, 21912.066113637477, 300.16528922791065, 300.16528922791065 … 159.48549751800778, 79.74274875900389, 318.97099503601555, 159.48549751800778, 159.48549751800778, 239.22824627701164, 79.74274875900389, 318.97099503601555, 717.684738831035, 318.97099503601555], [89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 89.376704183776, 6524.499405415648, 89.376704183776, 89.376704183776 … 47.488129523351624, 23.744064761675812, 94.97625904670325, 47.488129523351624, 47.488129523351624, 71.23219428502742, 23.744064761675812, 94.97625904670325, 213.6965828550823, 94.97625904670325], [10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 10.811846101247726, 789.264765391084, 10.811846101247726, 10.811846101247726 … 23.95365174390342, 11.97682587195171, 47.90730348780684, 23.95365174390342, 23.95365174390342, 35.93047761585513, 11.97682587195171, 47.90730348780684, 107.79143284756539, 47.90730348780684], [2.805003233432852, 2.805003233432852, 2.805003233432852, 2.805003233432852, 2.805003233432852, 2.805003233432852, 2.805003233432852, 204.76523604059818, 2.805003233432852, 2.805003233432852 … 1.6715876673042436, 0.8357938336521218, 3.343175334608487, 1.6715876673042436, 1.6715876673042436, 2.5073815009563654, 0.8357938336521218, 3.343175334608487, 7.522144502869096, 3.343175334608487], [6.500725957982608, 6.500725957982608, 6.500725957982608, 6.500725957982608, 6.500725957982608, 6.500725957982608, 6.500725957982608, 474.55299493273037, 6.500725957982608, 6.500725957982608 … 6.891238473954621, 3.4456192369773104, 13.782476947909242, 6.891238473954621, 6.891238473954621, 10.33685771093193, 3.4456192369773104, 13.782476947909242, 31.01057313279579, 13.782476947909242], [1, 1, 1, 1, 1, 1, 1, 73, 1, 1 … 2, 1, 4, 2, 2, 3, 1, 4, 9, 4], [1.2621234292912935, 1.2621234292912935, 1.2621234292912935, 1.2621234292912935, 1.2621234292912935, 1.2621234292912935, 1.2621234292912935, 92.13501033826448, 1.2621234292912935, 1.2621234292912935 … 7.195706593818325, 3.5978532969091623, 14.39141318763665, 7.195706593818325, 7.195706593818325, 10.793559890727488, 3.5978532969091623, 14.39141318763665, 32.38067967218246, 14.39141318763665], [1.2725515153792808, 1.2725515153792808, 1.2725515153792808, 1.2725515153792808, 1.2725515153792808, 1.2725515153792808, 1.2725515153792808, 50.149176921196464, 1.2725515153792808, 1.2725515153792808 … 4.689440178121116, 2.641574836987579, 8.785170860388186, 4.689440178121116, 4.689440178121116, 6.73730551925465, 2.641574836987579, 8.785170860388192, 19.024497566055874, 8.78517086038819], [1.0366204769396647, 1.0366204769396647, 1.0366204769396647, 1.0366204769396647, 1.0366204769396647, 1.0366204769396647, 1.0366204769396647, 41.943807824082384, 1.0366204769396647, 1.0366204769396647 … 3.707672387002747, 2.0880687420604924, 6.946879676887255, 3.707672387002747, 3.707672387002747, 5.327276031945001, 2.0880687420604924, 6.946879676887255, 15.044897901598524, 6.946879676887255], [0.08606620229542578, 0.08606620229542578, 0.08606620229542578, 0.08606620229542578, 0.08606620229542578, 0.08606620229542578, 0.08606620229542578, 3.4824164962333173, 0.08606620229542578, 0.08606620229542578 … 0.307832315494107, 0.17336349296464218, 0.5767699605530368, 0.307832315494107, 0.307832315494107, 0.4423011380235719, 0.17336349296464218, 0.5767699605530368, 1.2491140732003612, 0.5767699605530368], [1.0366204769396645, 1.0366204769396645, 1.0366204769396645, 1.0366204769396645, 1.0366204769396645, 1.0366204769396645, 1.0366204769396645, 41.94380782408239, 1.0366204769396645, 1.0366204769396645 … 3.7076723870027455, 2.0880687420604924, 6.946879676887253, 3.7076723870027455, 3.7076723870027455, 5.327276031945001, 2.0880687420604924, 6.946879676887253, 15.044897901598521, 6.946879676887253], [0.08606620229542579, 0.08606620229542579, 0.08606620229542579, 0.08606620229542579, 0.08606620229542579, 0.08606620229542579, 0.08606620229542579, 3.482416496233317, 0.08606620229542579, 0.08606620229542579 … 0.30783231549410706, 0.17336349296464218, 0.5767699605530366, 0.30783231549410706, 0.30783231549410706, 0.4423011380235718, 0.17336349296464218, 0.5767699605530366, 1.2491140732003612, 0.5767699605530366], [529497.6348107263, 529497.6348107263, 529497.6348107263, 529497.6348107263, 529497.6348107263, 529497.6348107263, 529497.6348107263, 2.142456909916889e7, 529497.6348107263, 529497.6348107263 … 1.8938500668699988e6, 1.066569187893431e6, 3.5484118248231346e6, 1.8938500668699988e6, 1.8938500668699988e6, 2.721130945846567e6, 1.066569187893431e6, 3.5484118248231346e6, 7.684816219705971e6, 3.5484118248231346e6], [287933.67975811707, 287933.67975811707, 287933.67975811707, 287933.67975811707, 287933.67975811707, 287933.67975811707, 287933.67975811707, 1.1650390676746938e7, 287933.67975811707, 287933.67975811707 … 1.0298502879709158e6, 579986.0324965386, 1.9295787989196705e6, 1.0298502879709158e6, 1.0298502879709158e6, 1.4797145434452933e6, 579986.0324965386, 1.9295787989196705e6, 4.1789000762915555e6, 1.9295787989196705e6]), BeforeIT.Bank(-1.120422281347071e7, -1.129368281347071e7, 0.0, 4.157448723812527e9, 0.02943204824218134, 0.5937094958540421, 0.46846509711823836, 0.03889467043517732, 0.46846509711823825, 0.0388946704351773, 0.0388946704351773, 0.011328496962076245), BeforeIT.CentralBank(0.002718076547885774, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 108269.00000000003), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 10379.131233009613, 14772.600098125293, 270596.7692719129, 2.236362551557255, 0.5897306072668128, [95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297 … 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297, 95.33506560450297], 14854.904987782325, 1.006746959608676), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.379611479576569e6, 0.010516128337378916, 0.006956262828751392, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, -1907.031188012901, 33533.8922715281, 34635.78164572657, [111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235 … 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235, 111.76111495354235], 34837.52123072572, [563.7278441887099, 137.06711828143872, 12.369202449503558, 1951.1486573532811, 1641.5118150746473, 1572.451180476323, 338.7450518175542, 538.7664372549933, 12.532252167455066, 1375.1889142302355 … 60.77488729836786, 13.450347502380207, 11.669342890912356, 22.34784518812155, 95.76035358138296, 43.83099657695198, 2.152256276956796, 0.0, 1.1865002552453423, 6.860630439949842], [503.860032335706, 137.06711828143872, 12.369202449503558, 1924.5300657123444, 1641.5118150746473, 1407.1255217144685, 338.7450518175542, 538.7664372549933, 12.532252167455066, 1265.9152327806391 … 60.77488729836786, 13.450347502380207, 11.669342890912356, 22.34784518812155, 95.76035358138296, 43.83099657695198, 2.152256276956796, 0.0, 1.1865002552453423, 6.860630439949842], [503.860032335706, 137.06711828143872, 12.369202449503558, 1924.5300657123444, 1641.5118150746473, 1407.1255217144685, 338.7450518175542, 538.7664372549933, 13.84738653851308, 1265.9152327806391 … 60.77488729836786, 13.450347502380207, 11.669342890912356, 22.34784518812155, 95.76035358138296, 43.83099657695198, 2.152256276956796, 0.0, 1.1865002552453423, 6.860630439949842], [1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676 … 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676, 1.006746959608676], 1.0067469596086764), 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, 134509.1002292076], [-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.006724300738585766], 1.006746959608677, [1.0067469596086756, 1.006746959608676, 1.0067469596086758, 1.0067469596086762, 1.0067469596086762, 1.0067469596086758, 1.0067469596086764, 1.0067469596086758, 1.0067469596086762, 1.0067469596086762 … 1.0067469596086758, 1.0067469596086762, 1.0067469596086758, 1.0067469596086762, 1.006746959608676, 1.0067469596086769, 1.0067469596086762, 1.006746959608676, 1.006746959608676, 1.0067469596086756], 1.0067469596086762, 1.0067469596086758, 1.0067469596086753, 1.0067469596086758, 134509.10022920766, -0.0009407256495842509, 0.006746959608675995, 0.008834742276495213, 0.011292120636086641, 0.009555850647865845, 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}(1, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(2, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(6, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(8, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(11, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(17, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(28, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(37, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))) … Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4072, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4087, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4090, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4101, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4107, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4112, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4114, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4116, 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.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143 … 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143, 4.68659869135143], [0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08953163562700422, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052 … 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052, 0.08942440605750052], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476 … 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476, 3.69794979940476], [0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446 … 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446, 0.30702509027556446], [3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.6978567882942786, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759 … 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759, 3.697949799404759], [0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644 … 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644, 0.3070250902755644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}[]))